home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / rmnologin < prev    next >
Text File  |  2006-04-25  |  276b  |  17 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2005 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4.  
  5. depend() {
  6.     need localmount
  7. }
  8.  
  9. start() {
  10.     if [[ -f /etc/nologin.boot ]] ; then
  11.         rm -f /etc/nologin /etc/nologin.boot &> /dev/null
  12.     fi
  13. }
  14.  
  15.  
  16. # vim:ts=4
  17.